home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / e / eiffel.lha / flc / source / attribut.e < prev    next >
Encoding:
Text File  |  1995-12-27  |  250 b   |  17 lines

  1.  
  2. -> Copyright © 1995, Guichard Damien.
  3.  
  4. -> An attribute is a feature that is not a routine
  5.  
  6. OPT MODULE
  7. OPT EXPORT
  8.  
  9. MODULE '*feature','*class'
  10.  
  11. OBJECT attribut OF feature
  12. ENDOBJECT
  13.  
  14. -> Is feature an attribute?
  15. PROC is_attribute() OF attribut IS TRUE
  16.  
  17.